home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
fg
/
fgl402e
/
expas.arj
/
TEMP
/
14-01.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-01-20
|
237b
|
19 lines
program main;
uses fgmain, fgmisc;
const
ESC = 27;
var
key, aux : byte;
begin
fg_initpm;
repeat
begin
fg_getkey(key,aux);
writeln('key = ',key:3,' aux = ',aux:3);
end;
until (key = ESC);
end.